home *** CD-ROM | disk | FTP | other *** search
- on mouseRoll
- global mapflag, mapCast, locationCast, stateName, regSet, flag, storeTotal
- mstartFIX()
- if soundBusy(1) then
- nothing()
- else
- set the visible of sprite 4 to 0
- if mapflag > 0 then
- set x to mapCast + 1
- set the castNum of sprite mapflag to x
- updateStage()
- startTimer()
- repeat while the timer < 10
- nothing()
- end repeat
- set x to x - 1
- set the castNum of sprite mapflag to x
- end if
- set flag to 0
- repeat with whichSprite = 48 down to 1
- if rollOver(whichSprite) then
- set theCastnum to the castNum of sprite whichSprite
- if theCastnum > 0 then
- set castName to the name of cast theCastnum
- if stringp(castName) then
- if char 1 of castName = "!" then
- set flag to 1
- exit repeat
- end if
- end if
- end if
- end if
- end repeat
- if flag = 1 then
- if char 2 of the name of cast theCastnum = "L" then
- set stateName to line the mouseLine of field theCastnum
- set stateNum to the number of cast stateName
- set the castNum of sprite 18 to stateNum
- set the visible of sprite 18 to 1
- set the locH of sprite 4 to the locH of sprite whichSprite
- set Vert to the locV of sprite whichSprite
- set lineDown to the mouseLine - 1
- set moveDown to lineDown * 12
- set moveDtotal to moveDown + Vert
- set the locV of sprite 4 to moveDtotal
- set the visible of sprite 4 to 1
- updateStage()
- startTimer()
- repeat while the timer < 15
- nothing()
- end repeat
- end if
- if char 2 of the name of cast theCastnum = "F" then
- set variable to the castNum of sprite whichSprite
- set variable to variable + 1
- set the castNum of sprite whichSprite to variable
- updateStage()
- startTimer()
- repeat while the timer < 10
- nothing()
- end repeat
- set variable to variable - 1
- set the castNum of sprite whichSprite to variable
- end if
- if char 2 of the name of cast theCastnum = "M" then
- set variable to the castNum of sprite whichSprite
- set variable to variable - 1
- set the text of cast "storeLocation" to the text of cast variable
- set locationCast to variable
- updateStage()
- set mapCast to the castNum of sprite whichSprite
- set mapflag to whichSprite
- set x to mapCast - 2
- if the castType of cast x = #text then
- set the visible of sprite 32 to 1
- set storeTotal to the name of cast x
- set ButtonText to "Store 1 of" && storeTotal
- set the text of cast "nextButton" to ButtonText
- else
- set the visible of sprite 32 to 0
- end if
- end if
- if char 2 of the name of cast theCastnum = "B" then
- repeat with i = 1 to 23
- set variable to the castNum of sprite whichSprite
- set variable to variable + 1
- set the castNum of sprite whichSprite to variable
- puppetSound("boink")
- updateStage()
- startTimer()
- repeat while the timer < 3
- nothing()
- end repeat
- if the name of cast variable = "stop" then
- exit repeat
- end if
- end repeat
- puppetSound(0)
- startTimer()
- repeat while the timer < 50
- nothing()
- end repeat
- set variable to variable - i
- set the castNum of sprite whichSprite to variable
- set soundNum to variable - 1
- if (the name of cast soundNum > 0) and (the castType of cast soundNum = #sound) then
- set soundName to the name of cast soundNum
- puppetSound(soundName)
- updateStage()
- end if
- end if
- end if
- end if
- set the visible of sprite 18 to 1
- end
-